home *** CD-ROM | disk | FTP | other *** search
/ Risc World 3 / Risc World 3.iso / SOFTWARE / ISSUE6 / PD / PDF / xpdf / Makefile
Makefile  |  2003-02-24  |  38KB  |  1,327 lines

  1. #--------------------------------------------------------------------------
  2. #
  3. #   Copyright (c) 2002, Colin Granville
  4. #
  5. #   All rights reserved.
  6. #
  7. #   Redistribution and use in source and binary forms, with or
  8. #   without modification, are permitted provided that the following 
  9. #   conditions are met:
  10. #
  11. #      * Redistributions of source code must retain the above copyright 
  12. #        notice, this list of conditions and the following disclaimer.
  13. #
  14. #      * Redistributions in binary form must reproduce the above 
  15. #        copyright notice, this list of conditions and the following 
  16. #        disclaimer in the documentation and/or other materials 
  17. #        provided with the distribution.
  18. #
  19. #      * The name Colin Granville may not be used to endorse or promote 
  20. #        products derived from this software without specific prior 
  21. #        written permission.
  22. #
  23. #   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
  24. #   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
  25. #   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 
  26. #   FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 
  27. #   COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 
  28. #   INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 
  29. #   (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 
  30. #   SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 
  31. #   HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 
  32. #   STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
  33. #   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
  34. #   OF THE POSSIBILITY OF SUCH DAMAGE.
  35. #
  36. #--------------------------------------------------------------------------
  37.  
  38.  
  39. #xpdf
  40.  
  41. GOO_PATH  = xpdf.goo
  42. XPDF_PATH = xpdf.xpdf
  43.  
  44. I_PATH = @,$(GOO_PATH),$(XPDF_PATH),C:,TCPIPLibs:
  45.  
  46. C++flags     = -c -depend !Depend -I$(I_PATH) -W -throwback -DACORN
  47. CCflags      = -c -depend !Depend -I$(I_PATH) -W -throwback -DACORN
  48. Linkflags    = -aif -c++ -rescan -o $@ 
  49. LibFileflags = -c -o $@
  50.  
  51. VPATH = $(GOO_PATH) $(XPDF_PATH)
  52.  
  53. LIB_OBJECTS  = c:o.c++lib c:o.stubs
  54.  
  55. GOO_OBJECTS = o.GHash o.GList o.GString o.gmempp o.gfile o.gmem o.parseargs
  56.  
  57. XPDF_OBJECTS = o.Annot o.Array o.Catalog o.Decrypt o.Dict o.Error\
  58.         o.Gfx o.GfxFont o.GfxState o.ImageOutputDev o.Lexer o.Link o.Fontfile\
  59.         o.Object o.OutputDev o.Page o.Parser o.PDFDoc o.PSOutputDev o.PSTokenizer o.Stream \
  60.         o.TextOutputDev o.XRef o.BuiltinFont o.BuiltinFontTables o.CharCodeToUnicode o.CMap \
  61.         o.FontEncodingTables o.Function o.GlobalParams o.NameToCharCode o.UnicodeMap \
  62.         o.JBIG2Stream 
  63.  
  64. .PHONY: all
  65. all: @.o.xpdflib @.pdffonts @.pdfinfo @.pdftops @.pdftotext
  66.  
  67. @.o.xpdflib: $(GOO_OBJECTS) $(XPDF_OBJECTS)
  68.          libfile $(Libfileflags) $(GOO_OBJECTS) $(XPDF_OBJECTS)
  69.  
  70. @.pdffonts: @.o.xpdflib o.pdffonts
  71.          link $(Linkflags)  @.o.xpdflib o.pdffonts $(LIB_OBJECTS) 
  72.  
  73. @.pdfinfo: @.o.xpdflib o.pdfinfo
  74.          link $(Linkflags)  @.o.xpdflib o.pdfinfo $(LIB_OBJECTS)
  75.  
  76. @.pdftops: @.o.xpdflib o.pdftops
  77.          link $(Linkflags)  @.o.xpdflib o.pdftops $(LIB_OBJECTS)
  78.  
  79. @.pdftotext: @.o.xpdflib o.pdftotext
  80.          link $(Linkflags)  @.o.xpdflib o.pdftotext $(LIB_OBJECTS)
  81.  
  82. .PHONY: clean
  83. clean:
  84.        -wipe @.o.* ~cf~v
  85.        remove pdffonts
  86.        remove pdfinfo
  87.        remove pdftops
  88.        remove pdftotext
  89.  
  90. # Default rules
  91. .SUFFIXES: .o .s .c .c++ 
  92.  
  93. .s.o:; objasm $(ObjAsmflags) -from $< -to $@
  94. .c.o:; cc $(CCflags) -o $@ $<
  95. .c++.o:; c++ $(C++flags) -o $@ $<
  96.  
  97.  
  98. # Dynamic dependencies:
  99. o.gfile:    c++.gfile
  100. o.gfile:    @.h.aconf
  101. o.gfile:    xpdf.goo.h.GString
  102. o.gfile:    @.h.aconf
  103. o.gfile:    h.gfile
  104. o.gfile:    xpdf.goo.h.gtypes
  105. o.Parser:    xpdf.xpdf.c++.Parser
  106. o.Parser:    @.h.aconf
  107. o.Parser:    xpdf.xpdf.h.Object
  108. o.Parser:    @.h.aconf
  109. o.Parser:    xpdf.goo.h.gtypes
  110. o.Parser:    xpdf.goo.h.gmem
  111. o.Parser:    xpdf.goo.h.GString
  112. o.Parser:    @.h.aconf
  113. o.Parser:    xpdf.xpdf.h.Array
  114. o.Parser:    @.h.aconf
  115. o.Parser:    xpdf.xpdf.h.Object
  116. o.Parser:    xpdf.xpdf.h.Dict
  117. o.Parser:    @.h.aconf
  118. o.Parser:    xpdf.xpdf.h.Object
  119. o.Parser:    xpdf.xpdf.h.Stream
  120. o.Parser:    @.h.aconf
  121. o.Parser:    xpdf.goo.h.gtypes
  122. o.Parser:    xpdf.xpdf.h.Object
  123. o.Parser:    xpdf.xpdf.h.Array
  124. o.Parser:    xpdf.xpdf.h.Dict
  125. o.Parser:    xpdf.xpdf.h.Parser
  126. o.Parser:    @.h.aconf
  127. o.Parser:    xpdf.xpdf.h.Lexer
  128. o.Parser:    @.h.aconf
  129. o.Parser:    xpdf.xpdf.h.Object
  130. o.Parser:    xpdf.xpdf.h.Stream
  131. o.Parser:    xpdf.xpdf.h.XRef
  132. o.Parser:    @.h.aconf
  133. o.Parser:    xpdf.goo.h.gtypes
  134. o.Parser:    xpdf.xpdf.h.Object
  135. o.Parser:    xpdf.xpdf.h.Error
  136. o.Parser:    @.h.aconf
  137. o.Parser:    xpdf.xpdf.h.config
  138. o.Parser:    xpdf.xpdf.h.Decrypt
  139. o.Parser:    @.h.aconf
  140. o.Parser:    xpdf.goo.h.gtypes
  141. o.Parser:    xpdf.goo.h.GString
  142. o.BuiltinFont:    xpdf.xpdf.c++.BuiltinFont
  143. o.BuiltinFont:    @.h.aconf
  144. o.BuiltinFont:    xpdf.goo.h.gmem
  145. o.BuiltinFont:    xpdf.xpdf.h.FontEncodingTables
  146. o.BuiltinFont:    xpdf.xpdf.h.BuiltinFont
  147. o.BuiltinFont:    @.h.aconf
  148. o.BuiltinFont:    xpdf.goo.h.gtypes
  149. o.gmem:    xpdf.goo.c.gmem
  150. o.gmem:    @.h.aconf
  151. o.gmem:    xpdf.goo.h.gmem
  152. o.Array:    xpdf.xpdf.c++.Array
  153. o.Array:    @.h.aconf
  154. o.Array:    xpdf.goo.h.gmem
  155. o.Array:    xpdf.xpdf.h.Object
  156. o.Array:    @.h.aconf
  157. o.Array:    xpdf.goo.h.gtypes
  158. o.Array:    xpdf.goo.h.gmem
  159. o.Array:    xpdf.goo.h.GString
  160. o.Array:    @.h.aconf
  161. o.Array:    xpdf.xpdf.h.Array
  162. o.Array:    @.h.aconf
  163. o.Array:    xpdf.xpdf.h.Object
  164. o.Array:    xpdf.xpdf.h.Dict
  165. o.Array:    @.h.aconf
  166. o.Array:    xpdf.xpdf.h.Object
  167. o.Array:    xpdf.xpdf.h.Stream
  168. o.Array:    @.h.aconf
  169. o.Array:    xpdf.goo.h.gtypes
  170. o.Array:    xpdf.xpdf.h.Object
  171. o.Array:    xpdf.xpdf.h.Array
  172. o.Error:    xpdf.xpdf.c++.Error
  173. o.Error:    @.h.aconf
  174. o.Error:    xpdf.xpdf.h.GlobalParams
  175. o.Error:    @.h.aconf
  176. o.Error:    xpdf.goo.h.gtypes
  177. o.Error:    xpdf.xpdf.h.CharTypes
  178. o.Error:    xpdf.xpdf.h.Error
  179. o.Error:    @.h.aconf
  180. o.Error:    xpdf.xpdf.h.config
  181. o.CMap:    xpdf.xpdf.c++.CMap
  182. o.CMap:    @.h.aconf
  183. o.CMap:    xpdf.goo.h.gmem
  184. o.CMap:    @.h.gfile
  185. o.CMap:    xpdf.goo.h.gtypes
  186. o.CMap:    xpdf.goo.h.GString
  187. o.CMap:    @.h.aconf
  188. o.CMap:    xpdf.xpdf.h.Error
  189. o.CMap:    @.h.aconf
  190. o.CMap:    xpdf.xpdf.h.config
  191. o.CMap:    xpdf.xpdf.h.GlobalParams
  192. o.CMap:    @.h.aconf
  193. o.CMap:    xpdf.goo.h.gtypes
  194. o.CMap:    xpdf.xpdf.h.CharTypes
  195. o.CMap:    xpdf.xpdf.h.PSTokenizer
  196. o.CMap:    @.h.aconf
  197. o.CMap:    xpdf.goo.h.gtypes
  198. o.CMap:    xpdf.xpdf.h.CMap
  199. o.CMap:    @.h.aconf
  200. o.CMap:    xpdf.goo.h.gtypes
  201. o.CMap:    xpdf.xpdf.h.CharTypes
  202. o.Function:    xpdf.xpdf.c++.Function
  203. o.Function:    @.h.aconf
  204. o.Function:    xpdf.goo.h.gmem
  205. o.Function:    xpdf.xpdf.h.Object
  206. o.Function:    @.h.aconf
  207. o.Function:    xpdf.goo.h.gtypes
  208. o.Function:    xpdf.goo.h.gmem
  209. o.Function:    xpdf.goo.h.GString
  210. o.Function:    @.h.aconf
  211. o.Function:    xpdf.xpdf.h.Array
  212. o.Function:    @.h.aconf
  213. o.Function:    xpdf.xpdf.h.Object
  214. o.Function:    xpdf.xpdf.h.Dict
  215. o.Function:    @.h.aconf
  216. o.Function:    xpdf.xpdf.h.Object
  217. o.Function:    xpdf.xpdf.h.Stream
  218. o.Function:    @.h.aconf
  219. o.Function:    xpdf.goo.h.gtypes
  220. o.Function:    xpdf.xpdf.h.Object
  221. o.Function:    xpdf.xpdf.h.Dict
  222. o.Function:    xpdf.xpdf.h.Stream
  223. o.Function:    xpdf.xpdf.h.Error
  224. o.Function:    @.h.aconf
  225. o.Function:    xpdf.xpdf.h.config
  226. o.Function:    xpdf.xpdf.h.Function
  227. o.Function:    @.h.aconf
  228. o.Function:    xpdf.goo.h.gtypes
  229. o.Function:    xpdf.xpdf.h.Object
  230. o.pdffonts:    xpdf.xpdf.c++.pdffonts
  231. o.pdffonts:    @.h.aconf
  232. o.pdffonts:    xpdf.goo.h.parseargs
  233. o.pdffonts:    xpdf.goo.h.gtypes
  234. o.pdffonts:    xpdf.goo.h.GString
  235. o.pdffonts:    @.h.aconf
  236. o.pdffonts:    xpdf.goo.h.gmem
  237. o.pdffonts:    xpdf.xpdf.h.GlobalParams
  238. o.pdffonts:    @.h.aconf
  239. o.pdffonts:    xpdf.goo.h.gtypes
  240. o.pdffonts:    xpdf.xpdf.h.CharTypes
  241. o.pdffonts:    xpdf.xpdf.h.Error
  242. o.pdffonts:    @.h.aconf
  243. o.pdffonts:    xpdf.xpdf.h.config
  244. o.pdffonts:    xpdf.xpdf.h.Object
  245. o.pdffonts:    @.h.aconf
  246. o.pdffonts:    xpdf.goo.h.gtypes
  247. o.pdffonts:    xpdf.goo.h.gmem
  248. o.pdffonts:    xpdf.goo.h.GString
  249. o.pdffonts:    xpdf.xpdf.h.Array
  250. o.pdffonts:    @.h.aconf
  251. o.pdffonts:    xpdf.xpdf.h.Object
  252. o.pdffonts:    xpdf.xpdf.h.Dict
  253. o.pdffonts:    @.h.aconf
  254. o.pdffonts:    xpdf.xpdf.h.Object
  255. o.pdffonts:    xpdf.xpdf.h.Stream
  256. o.pdffonts:    @.h.aconf
  257. o.pdffonts:    xpdf.goo.h.gtypes
  258. o.pdffonts:    xpdf.xpdf.h.Object
  259. o.pdffonts:    xpdf.xpdf.h.Dict
  260. o.pdffonts:    xpdf.xpdf.h.GfxFont
  261. o.pdffonts:    @.h.aconf
  262. o.pdffonts:    xpdf.goo.h.gtypes
  263. o.pdffonts:    xpdf.goo.h.GString
  264. o.pdffonts:    xpdf.xpdf.h.Object
  265. o.pdffonts:    xpdf.xpdf.h.CharTypes
  266. o.pdffonts:    xpdf.xpdf.h.Annot
  267. o.pdffonts:    @.h.aconf
  268. o.pdffonts:    xpdf.xpdf.h.PDFDoc
  269. o.pdffonts:    @.h.aconf
  270. o.pdffonts:    xpdf.xpdf.h.XRef
  271. o.pdffonts:    @.h.aconf
  272. o.pdffonts:    xpdf.goo.h.gtypes
  273. o.pdffonts:    xpdf.xpdf.h.Object
  274. o.pdffonts:    xpdf.xpdf.h.Link
  275. o.pdffonts:    @.h.aconf
  276. o.pdffonts:    xpdf.xpdf.h.Object
  277. o.pdffonts:    xpdf.xpdf.h.Catalog
  278. o.pdffonts:    @.h.aconf
  279. o.pdffonts:    xpdf.xpdf.h.Page
  280. o.pdffonts:    @.h.aconf
  281. o.pdffonts:    xpdf.xpdf.h.Object
  282. o.pdffonts:    xpdf.xpdf.h.config
  283. o.pdfinfo:    xpdf.xpdf.c++.pdfinfo
  284. o.pdfinfo:    @.h.aconf
  285. o.pdfinfo:    xpdf.goo.h.parseargs
  286. o.pdfinfo:    xpdf.goo.h.gtypes
  287. o.pdfinfo:    xpdf.goo.h.GString
  288. o.pdfinfo:    @.h.aconf
  289. o.pdfinfo:    xpdf.goo.h.gmem
  290. o.pdfinfo:    xpdf.xpdf.h.GlobalParams
  291. o.pdfinfo:    @.h.aconf
  292. o.pdfinfo:    xpdf.goo.h.gtypes
  293. o.pdfinfo:    xpdf.xpdf.h.CharTypes
  294. o.pdfinfo:    xpdf.xpdf.h.Object
  295. o.pdfinfo:    @.h.aconf
  296. o.pdfinfo:    xpdf.goo.h.gtypes
  297. o.pdfinfo:    xpdf.goo.h.gmem
  298. o.pdfinfo:    xpdf.goo.h.GString
  299. o.pdfinfo:    xpdf.xpdf.h.Array
  300. o.pdfinfo:    @.h.aconf
  301. o.pdfinfo:    xpdf.xpdf.h.Object
  302. o.pdfinfo:    xpdf.xpdf.h.Dict
  303. o.pdfinfo:    @.h.aconf
  304. o.pdfinfo:    xpdf.xpdf.h.Object
  305. o.pdfinfo:    xpdf.xpdf.h.Stream
  306. o.pdfinfo:    @.h.aconf
  307. o.pdfinfo:    xpdf.goo.h.gtypes
  308. o.pdfinfo:    xpdf.xpdf.h.Object
  309. o.pdfinfo:    xpdf.xpdf.h.Stream
  310. o.pdfinfo:    xpdf.xpdf.h.Array
  311. o.pdfinfo:    xpdf.xpdf.h.Dict
  312. o.pdfinfo:    xpdf.xpdf.h.XRef
  313. o.pdfinfo:    @.h.aconf
  314. o.pdfinfo:    xpdf.goo.h.gtypes
  315. o.pdfinfo:    xpdf.xpdf.h.Object
  316. o.pdfinfo:    xpdf.xpdf.h.Catalog
  317. o.pdfinfo:    @.h.aconf
  318. o.pdfinfo:    xpdf.xpdf.h.Page
  319. o.pdfinfo:    @.h.aconf
  320. o.pdfinfo:    xpdf.xpdf.h.Object
  321. o.pdfinfo:    xpdf.xpdf.h.PDFDoc
  322. o.pdfinfo:    @.h.aconf
  323. o.pdfinfo:    xpdf.xpdf.h.XRef
  324. o.pdfinfo:    xpdf.xpdf.h.Link
  325. o.pdfinfo:    @.h.aconf
  326. o.pdfinfo:    xpdf.xpdf.h.Object
  327. o.pdfinfo:    xpdf.xpdf.h.Catalog
  328. o.pdfinfo:    xpdf.xpdf.h.Page
  329. o.pdfinfo:    xpdf.xpdf.h.CharTypes
  330. o.pdfinfo:    xpdf.xpdf.h.UnicodeMap
  331. o.pdfinfo:    @.h.aconf
  332. o.pdfinfo:    xpdf.goo.h.gtypes
  333. o.pdfinfo:    xpdf.xpdf.h.CharTypes
  334. o.pdfinfo:    xpdf.xpdf.h.Error
  335. o.pdfinfo:    @.h.aconf
  336. o.pdfinfo:    xpdf.xpdf.h.config
  337. o.pdfinfo:    xpdf.xpdf.h.config
  338. o.pdftops:    xpdf.xpdf.c++.pdftops
  339. o.pdftops:    @.h.aconf
  340. o.pdftops:    xpdf.goo.h.parseargs
  341. o.pdftops:    xpdf.goo.h.gtypes
  342. o.pdftops:    xpdf.goo.h.GString
  343. o.pdftops:    @.h.aconf
  344. o.pdftops:    xpdf.goo.h.gmem
  345. o.pdftops:    xpdf.xpdf.h.GlobalParams
  346. o.pdftops:    @.h.aconf
  347. o.pdftops:    xpdf.goo.h.gtypes
  348. o.pdftops:    xpdf.xpdf.h.CharTypes
  349. o.pdftops:    xpdf.xpdf.h.Object
  350. o.pdftops:    @.h.aconf
  351. o.pdftops:    xpdf.goo.h.gtypes
  352. o.pdftops:    xpdf.goo.h.gmem
  353. o.pdftops:    xpdf.goo.h.GString
  354. o.pdftops:    xpdf.xpdf.h.Array
  355. o.pdftops:    @.h.aconf
  356. o.pdftops:    xpdf.xpdf.h.Object
  357. o.pdftops:    xpdf.xpdf.h.Dict
  358. o.pdftops:    @.h.aconf
  359. o.pdftops:    xpdf.xpdf.h.Object
  360. o.pdftops:    xpdf.xpdf.h.Stream
  361. o.pdftops:    @.h.aconf
  362. o.pdftops:    xpdf.goo.h.gtypes
  363. o.pdftops:    xpdf.xpdf.h.Object
  364. o.pdftops:    xpdf.xpdf.h.Stream
  365. o.pdftops:    xpdf.xpdf.h.Array
  366. o.pdftops:    xpdf.xpdf.h.Dict
  367. o.pdftops:    xpdf.xpdf.h.XRef
  368. o.pdftops:    @.h.aconf
  369. o.pdftops:    xpdf.goo.h.gtypes
  370. o.pdftops:    xpdf.xpdf.h.Object
  371. o.pdftops:    xpdf.xpdf.h.Catalog
  372. o.pdftops:    @.h.aconf
  373. o.pdftops:    xpdf.xpdf.h.Page
  374. o.pdftops:    @.h.aconf
  375. o.pdftops:    xpdf.xpdf.h.Object
  376. o.pdftops:    xpdf.xpdf.h.PDFDoc
  377. o.pdftops:    @.h.aconf
  378. o.pdftops:    xpdf.xpdf.h.XRef
  379. o.pdftops:    xpdf.xpdf.h.Link
  380. o.pdftops:    @.h.aconf
  381. o.pdftops:    xpdf.xpdf.h.Object
  382. o.pdftops:    xpdf.xpdf.h.Catalog
  383. o.pdftops:    xpdf.xpdf.h.Page
  384. o.pdftops:    xpdf.xpdf.h.PSOutputDev
  385. o.pdftops:    @.h.aconf
  386. o.pdftops:    xpdf.xpdf.h.config
  387. o.pdftops:    xpdf.xpdf.h.Object
  388. o.pdftops:    xpdf.xpdf.h.GlobalParams
  389. o.pdftops:    xpdf.xpdf.h.OutputDev
  390. o.pdftops:    @.h.aconf
  391. o.pdftops:    xpdf.goo.h.gtypes
  392. o.pdftops:    xpdf.xpdf.h.CharTypes
  393. o.pdftops:    xpdf.xpdf.h.Error
  394. o.pdftops:    @.h.aconf
  395. o.pdftops:    xpdf.xpdf.h.config
  396. o.pdftops:    xpdf.xpdf.h.config
  397. o.GHash:    xpdf.goo.c++.GHash
  398. o.GHash:    @.h.aconf
  399. o.GHash:    xpdf.goo.h.gmem
  400. o.GHash:    xpdf.goo.h.GString
  401. o.GHash:    @.h.aconf
  402. o.GHash:    xpdf.goo.h.GHash
  403. o.GHash:    @.h.aconf
  404. o.GHash:    xpdf.goo.h.gtypes
  405. o.parseargs:    xpdf.goo.c.parseargs
  406. o.parseargs:    xpdf.goo.h.parseargs
  407. o.parseargs:    xpdf.goo.h.gtypes
  408. o.Annot:    xpdf.xpdf.c++.Annot
  409. o.Annot:    @.h.aconf
  410. o.Annot:    xpdf.goo.h.gmem
  411. o.Annot:    xpdf.xpdf.h.Object
  412. o.Annot:    @.h.aconf
  413. o.Annot:    xpdf.goo.h.gtypes
  414. o.Annot:    xpdf.goo.h.gmem
  415. o.Annot:    xpdf.goo.h.GString
  416. o.Annot:    @.h.aconf
  417. o.Annot:    xpdf.xpdf.h.Array
  418. o.Annot:    @.h.aconf
  419. o.Annot:    xpdf.xpdf.h.Object
  420. o.Annot:    xpdf.xpdf.h.Dict
  421. o.Annot:    @.h.aconf
  422. o.Annot:    xpdf.xpdf.h.Object
  423. o.Annot:    xpdf.xpdf.h.Stream
  424. o.Annot:    @.h.aconf
  425. o.Annot:    xpdf.goo.h.gtypes
  426. o.Annot:    xpdf.xpdf.h.Object
  427. o.Annot:    xpdf.xpdf.h.Gfx
  428. o.Annot:    @.h.aconf
  429. o.Annot:    xpdf.goo.h.gtypes
  430. o.Annot:    xpdf.xpdf.h.Annot
  431. o.Annot:    @.h.aconf
  432. o.Catalog:    xpdf.xpdf.c++.Catalog
  433. o.Catalog:    @.h.aconf
  434. o.Catalog:    xpdf.goo.h.gmem
  435. o.Catalog:    xpdf.xpdf.h.Object
  436. o.Catalog:    @.h.aconf
  437. o.Catalog:    xpdf.goo.h.gtypes
  438. o.Catalog:    xpdf.goo.h.gmem
  439. o.Catalog:    xpdf.goo.h.GString
  440. o.Catalog:    @.h.aconf
  441. o.Catalog:    xpdf.xpdf.h.Array
  442. o.Catalog:    @.h.aconf
  443. o.Catalog:    xpdf.xpdf.h.Object
  444. o.Catalog:    xpdf.xpdf.h.Dict
  445. o.Catalog:    @.h.aconf
  446. o.Catalog:    xpdf.xpdf.h.Object
  447. o.Catalog:    xpdf.xpdf.h.Stream
  448. o.Catalog:    @.h.aconf
  449. o.Catalog:    xpdf.goo.h.gtypes
  450. o.Catalog:    xpdf.xpdf.h.Object
  451. o.Catalog:    xpdf.xpdf.h.XRef
  452. o.Catalog:    @.h.aconf
  453. o.Catalog:    xpdf.goo.h.gtypes
  454. o.Catalog:    xpdf.xpdf.h.Object
  455. o.Catalog:    xpdf.xpdf.h.Array
  456. o.Catalog:    xpdf.xpdf.h.Dict
  457. o.Catalog:    xpdf.xpdf.h.Page
  458. o.Catalog:    @.h.aconf
  459. o.Catalog:    xpdf.xpdf.h.Object
  460. o.Catalog:    xpdf.xpdf.h.Error
  461. o.Catalog:    @.h.aconf
  462. o.Catalog:    xpdf.xpdf.h.config
  463. o.Catalog:    xpdf.xpdf.h.Link
  464. o.Catalog:    @.h.aconf
  465. o.Catalog:    xpdf.xpdf.h.Object
  466. o.Catalog:    xpdf.xpdf.h.Catalog
  467. o.Catalog:    @.h.aconf
  468. o.Decrypt:    xpdf.xpdf.c++.Decrypt
  469. o.Decrypt:    @.h.aconf
  470. o.Decrypt:    xpdf.goo.h.gmem
  471. o.Decrypt:    xpdf.xpdf.h.Decrypt
  472. o.Decrypt:    @.h.aconf
  473. o.Decrypt:    xpdf.goo.h.gtypes
  474. o.Decrypt:    xpdf.goo.h.GString
  475. o.Decrypt:    @.h.aconf
  476. o.Dict:    xpdf.xpdf.c++.Dict
  477. o.Dict:    @.h.aconf
  478. o.Dict:    xpdf.goo.h.gmem
  479. o.Dict:    xpdf.xpdf.h.Object
  480. o.Dict:    @.h.aconf
  481. o.Dict:    xpdf.goo.h.gtypes
  482. o.Dict:    xpdf.goo.h.gmem
  483. o.Dict:    xpdf.goo.h.GString
  484. o.Dict:    @.h.aconf
  485. o.Dict:    xpdf.xpdf.h.Array
  486. o.Dict:    @.h.aconf
  487. o.Dict:    xpdf.xpdf.h.Object
  488. o.Dict:    xpdf.xpdf.h.Dict
  489. o.Dict:    @.h.aconf
  490. o.Dict:    xpdf.xpdf.h.Object
  491. o.Dict:    xpdf.xpdf.h.Stream
  492. o.Dict:    @.h.aconf
  493. o.Dict:    xpdf.goo.h.gtypes
  494. o.Dict:    xpdf.xpdf.h.Object
  495. o.Dict:    xpdf.xpdf.h.XRef
  496. o.Dict:    @.h.aconf
  497. o.Dict:    xpdf.goo.h.gtypes
  498. o.Dict:    xpdf.xpdf.h.Object
  499. o.Dict:    xpdf.xpdf.h.Dict
  500. o.ImageOutputDev:    xpdf.xpdf.c++.ImageOutputDev
  501. o.ImageOutputDev:    @.h.aconf
  502. o.ImageOutputDev:    xpdf.goo.h.gmem
  503. o.ImageOutputDev:    xpdf.xpdf.h.config
  504. o.ImageOutputDev:    xpdf.xpdf.h.Error
  505. o.ImageOutputDev:    @.h.aconf
  506. o.ImageOutputDev:    xpdf.xpdf.h.config
  507. o.ImageOutputDev:    xpdf.xpdf.h.GfxState
  508. o.ImageOutputDev:    @.h.aconf
  509. o.ImageOutputDev:    xpdf.goo.h.gtypes
  510. o.ImageOutputDev:    xpdf.xpdf.h.Object
  511. o.ImageOutputDev:    @.h.aconf
  512. o.ImageOutputDev:    xpdf.goo.h.gtypes
  513. o.ImageOutputDev:    xpdf.goo.h.gmem
  514. o.ImageOutputDev:    xpdf.goo.h.GString
  515. o.ImageOutputDev:    @.h.aconf
  516. o.ImageOutputDev:    xpdf.xpdf.h.Array
  517. o.ImageOutputDev:    @.h.aconf
  518. o.ImageOutputDev:    xpdf.xpdf.h.Object
  519. o.ImageOutputDev:    xpdf.xpdf.h.Dict
  520. o.ImageOutputDev:    @.h.aconf
  521. o.ImageOutputDev:    xpdf.xpdf.h.Object
  522. o.ImageOutputDev:    xpdf.xpdf.h.Stream
  523. o.ImageOutputDev:    @.h.aconf
  524. o.ImageOutputDev:    xpdf.goo.h.gtypes
  525. o.ImageOutputDev:    xpdf.xpdf.h.Object
  526. o.ImageOutputDev:    xpdf.xpdf.h.Function
  527. o.ImageOutputDev:    @.h.aconf
  528. o.ImageOutputDev:    xpdf.goo.h.gtypes
  529. o.ImageOutputDev:    xpdf.xpdf.h.Object
  530. o.ImageOutputDev:    xpdf.xpdf.h.Object
  531. o.ImageOutputDev:    xpdf.xpdf.h.Stream
  532. o.ImageOutputDev:    xpdf.xpdf.h.ImageOutputDev
  533. o.ImageOutputDev:    @.h.aconf
  534. o.ImageOutputDev:    xpdf.goo.h.gtypes
  535. o.ImageOutputDev:    xpdf.xpdf.h.OutputDev
  536. o.ImageOutputDev:    @.h.aconf
  537. o.ImageOutputDev:    xpdf.goo.h.gtypes
  538. o.ImageOutputDev:    xpdf.xpdf.h.CharTypes
  539. o.Lexer:    xpdf.xpdf.c++.Lexer
  540. o.Lexer:    @.h.aconf
  541. o.Lexer:    xpdf.xpdf.h.Lexer
  542. o.Lexer:    @.h.aconf
  543. o.Lexer:    xpdf.xpdf.h.Object
  544. o.Lexer:    @.h.aconf
  545. o.Lexer:    xpdf.goo.h.gtypes
  546. o.Lexer:    xpdf.goo.h.gmem
  547. o.Lexer:    xpdf.goo.h.GString
  548. o.Lexer:    @.h.aconf
  549. o.Lexer:    xpdf.xpdf.h.Array
  550. o.Lexer:    @.h.aconf
  551. o.Lexer:    xpdf.xpdf.h.Object
  552. o.Lexer:    xpdf.xpdf.h.Dict
  553. o.Lexer:    @.h.aconf
  554. o.Lexer:    xpdf.xpdf.h.Object
  555. o.Lexer:    xpdf.xpdf.h.Stream
  556. o.Lexer:    @.h.aconf
  557. o.Lexer:    xpdf.goo.h.gtypes
  558. o.Lexer:    xpdf.xpdf.h.Object
  559. o.Lexer:    xpdf.xpdf.h.Stream
  560. o.Lexer:    xpdf.xpdf.h.Error
  561. o.Lexer:    @.h.aconf
  562. o.Lexer:    xpdf.xpdf.h.config
  563. o.Link:    xpdf.xpdf.c++.Link
  564. o.Link:    @.h.aconf
  565. o.Link:    xpdf.goo.h.gmem
  566. o.Link:    xpdf.goo.h.GString
  567. o.Link:    @.h.aconf
  568. o.Link:    xpdf.xpdf.h.Error
  569. o.Link:    @.h.aconf
  570. o.Link:    xpdf.xpdf.h.config
  571. o.Link:    xpdf.xpdf.h.Object
  572. o.Link:    @.h.aconf
  573. o.Link:    xpdf.goo.h.gtypes
  574. o.Link:    xpdf.goo.h.gmem
  575. o.Link:    xpdf.goo.h.GString
  576. o.Link:    xpdf.xpdf.h.Array
  577. o.Link:    @.h.aconf
  578. o.Link:    xpdf.xpdf.h.Object
  579. o.Link:    xpdf.xpdf.h.Dict
  580. o.Link:    @.h.aconf
  581. o.Link:    xpdf.xpdf.h.Object
  582. o.Link:    xpdf.xpdf.h.Stream
  583. o.Link:    @.h.aconf
  584. o.Link:    xpdf.goo.h.gtypes
  585. o.Link:    xpdf.xpdf.h.Object
  586. o.Link:    xpdf.xpdf.h.Array
  587. o.Link:    xpdf.xpdf.h.Dict
  588. o.Link:    xpdf.xpdf.h.Link
  589. o.Link:    @.h.aconf
  590. o.Link:    xpdf.xpdf.h.Object
  591. o.Object:    xpdf.xpdf.c++.Object
  592. o.Object:    @.h.aconf
  593. o.Object:    xpdf.xpdf.h.Object
  594. o.Object:    @.h.aconf
  595. o.Object:    xpdf.goo.h.gtypes
  596. o.Object:    xpdf.goo.h.gmem
  597. o.Object:    xpdf.goo.h.GString
  598. o.Object:    @.h.aconf
  599. o.Object:    xpdf.xpdf.h.Array
  600. o.Object:    @.h.aconf
  601. o.Object:    xpdf.xpdf.h.Object
  602. o.Object:    xpdf.xpdf.h.Dict
  603. o.Object:    @.h.aconf
  604. o.Object:    xpdf.xpdf.h.Object
  605. o.Object:    xpdf.xpdf.h.Stream
  606. o.Object:    @.h.aconf
  607. o.Object:    xpdf.goo.h.gtypes
  608. o.Object:    xpdf.xpdf.h.Object
  609. o.Object:    xpdf.xpdf.h.Array
  610. o.Object:    xpdf.xpdf.h.Dict
  611. o.Object:    xpdf.xpdf.h.Error
  612. o.Object:    @.h.aconf
  613. o.Object:    xpdf.xpdf.h.config
  614. o.Object:    xpdf.xpdf.h.Stream
  615. o.Object:    xpdf.xpdf.h.XRef
  616. o.Object:    @.h.aconf
  617. o.Object:    xpdf.goo.h.gtypes
  618. o.Object:    xpdf.xpdf.h.Object
  619. o.OutputDev:    xpdf.xpdf.c++.OutputDev
  620. o.OutputDev:    @.h.aconf
  621. o.OutputDev:    xpdf.xpdf.h.Object
  622. o.OutputDev:    @.h.aconf
  623. o.OutputDev:    xpdf.goo.h.gtypes
  624. o.OutputDev:    xpdf.goo.h.gmem
  625. o.OutputDev:    xpdf.goo.h.GString
  626. o.OutputDev:    @.h.aconf
  627. o.OutputDev:    xpdf.xpdf.h.Array
  628. o.OutputDev:    @.h.aconf
  629. o.OutputDev:    xpdf.xpdf.h.Object
  630. o.OutputDev:    xpdf.xpdf.h.Dict
  631. o.OutputDev:    @.h.aconf
  632. o.OutputDev:    xpdf.xpdf.h.Object
  633. o.OutputDev:    xpdf.xpdf.h.Stream
  634. o.OutputDev:    @.h.aconf
  635. o.OutputDev:    xpdf.goo.h.gtypes
  636. o.OutputDev:    xpdf.xpdf.h.Object
  637. o.OutputDev:    xpdf.xpdf.h.Stream
  638. o.OutputDev:    xpdf.xpdf.h.GfxState
  639. o.OutputDev:    @.h.aconf
  640. o.OutputDev:    xpdf.goo.h.gtypes
  641. o.OutputDev:    xpdf.xpdf.h.Object
  642. o.OutputDev:    xpdf.xpdf.h.Function
  643. o.OutputDev:    @.h.aconf
  644. o.OutputDev:    xpdf.goo.h.gtypes
  645. o.OutputDev:    xpdf.xpdf.h.Object
  646. o.OutputDev:    xpdf.xpdf.h.OutputDev
  647. o.OutputDev:    @.h.aconf
  648. o.OutputDev:    xpdf.goo.h.gtypes
  649. o.OutputDev:    xpdf.xpdf.h.CharTypes
  650. o.Page:    xpdf.xpdf.c++.Page
  651. o.Page:    @.h.aconf
  652. o.Page:    xpdf.xpdf.h.GlobalParams
  653. o.Page:    @.h.aconf
  654. o.Page:    xpdf.goo.h.gtypes
  655. o.Page:    xpdf.xpdf.h.CharTypes
  656. o.Page:    xpdf.xpdf.h.Object
  657. o.Page:    @.h.aconf
  658. o.Page:    xpdf.goo.h.gtypes
  659. o.Page:    xpdf.goo.h.gmem
  660. o.Page:    xpdf.goo.h.GString
  661. o.Page:    @.h.aconf
  662. o.Page:    xpdf.xpdf.h.Array
  663. o.Page:    @.h.aconf
  664. o.Page:    xpdf.xpdf.h.Object
  665. o.Page:    xpdf.xpdf.h.Dict
  666. o.Page:    @.h.aconf
  667. o.Page:    xpdf.xpdf.h.Object
  668. o.Page:    xpdf.xpdf.h.Stream
  669. o.Page:    @.h.aconf
  670. o.Page:    xpdf.goo.h.gtypes
  671. o.Page:    xpdf.xpdf.h.Object
  672. o.Page:    xpdf.xpdf.h.Array
  673. o.Page:    xpdf.xpdf.h.Dict
  674. o.Page:    xpdf.xpdf.h.XRef
  675. o.Page:    @.h.aconf
  676. o.Page:    xpdf.goo.h.gtypes
  677. o.Page:    xpdf.xpdf.h.Object
  678. o.Page:    xpdf.xpdf.h.Link
  679. o.Page:    @.h.aconf
  680. o.Page:    xpdf.xpdf.h.Object
  681. o.Page:    xpdf.xpdf.h.OutputDev
  682. o.Page:    @.h.aconf
  683. o.Page:    xpdf.goo.h.gtypes
  684. o.Page:    xpdf.xpdf.h.CharTypes
  685. o.Page:    xpdf.xpdf.h.Gfx
  686. o.Page:    @.h.aconf
  687. o.Page:    xpdf.goo.h.gtypes
  688. o.Page:    xpdf.xpdf.h.Annot
  689. o.Page:    @.h.aconf
  690. o.Page:    xpdf.xpdf.h.Error
  691. o.Page:    @.h.aconf
  692. o.Page:    xpdf.xpdf.h.config
  693. o.Page:    xpdf.xpdf.h.Page
  694. o.Page:    @.h.aconf
  695. o.Page:    xpdf.xpdf.h.Object
  696. o.PDFDoc:    xpdf.xpdf.c++.PDFDoc
  697. o.PDFDoc:    @.h.aconf
  698. o.PDFDoc:    xpdf.goo.h.GString
  699. o.PDFDoc:    @.h.aconf
  700. o.PDFDoc:    xpdf.xpdf.h.config
  701. o.PDFDoc:    xpdf.xpdf.h.GlobalParams
  702. o.PDFDoc:    @.h.aconf
  703. o.PDFDoc:    xpdf.goo.h.gtypes
  704. o.PDFDoc:    xpdf.xpdf.h.CharTypes
  705. o.PDFDoc:    xpdf.xpdf.h.Page
  706. o.PDFDoc:    @.h.aconf
  707. o.PDFDoc:    xpdf.xpdf.h.Object
  708. o.PDFDoc:    @.h.aconf
  709. o.PDFDoc:    xpdf.goo.h.gtypes
  710. o.PDFDoc:    xpdf.goo.h.gmem
  711. o.PDFDoc:    xpdf.goo.h.GString
  712. o.PDFDoc:    xpdf.xpdf.h.Array
  713. o.PDFDoc:    @.h.aconf
  714. o.PDFDoc:    xpdf.xpdf.h.Object
  715. o.PDFDoc:    xpdf.xpdf.h.Dict
  716. o.PDFDoc:    @.h.aconf
  717. o.PDFDoc:    xpdf.xpdf.h.Object
  718. o.PDFDoc:    xpdf.xpdf.h.Stream
  719. o.PDFDoc:    @.h.aconf
  720. o.PDFDoc:    xpdf.goo.h.gtypes
  721. o.PDFDoc:    xpdf.xpdf.h.Object
  722. o.PDFDoc:    xpdf.xpdf.h.Catalog
  723. o.PDFDoc:    @.h.aconf
  724. o.PDFDoc:    xpdf.xpdf.h.Stream
  725. o.PDFDoc:    xpdf.xpdf.h.XRef
  726. o.PDFDoc:    @.h.aconf
  727. o.PDFDoc:    xpdf.goo.h.gtypes
  728. o.PDFDoc:    xpdf.xpdf.h.Object
  729. o.PDFDoc:    xpdf.xpdf.h.Link
  730. o.PDFDoc:    @.h.aconf
  731. o.PDFDoc:    xpdf.xpdf.h.Object
  732. o.PDFDoc:    xpdf.xpdf.h.OutputDev
  733. o.PDFDoc:    @.h.aconf
  734. o.PDFDoc:    xpdf.goo.h.gtypes
  735. o.PDFDoc:    xpdf.xpdf.h.CharTypes
  736. o.PDFDoc:    xpdf.xpdf.h.Error
  737. o.PDFDoc:    @.h.aconf
  738. o.PDFDoc:    xpdf.xpdf.h.config
  739. o.PDFDoc:    xpdf.xpdf.h.ErrorCodes
  740. o.PDFDoc:    xpdf.xpdf.h.Lexer
  741. o.PDFDoc:    @.h.aconf
  742. o.PDFDoc:    xpdf.xpdf.h.Object
  743. o.PDFDoc:    xpdf.xpdf.h.Stream
  744. o.PDFDoc:    xpdf.xpdf.h.Parser
  745. o.PDFDoc:    @.h.aconf
  746. o.PDFDoc:    xpdf.xpdf.h.Lexer
  747. o.PDFDoc:    xpdf.xpdf.h.PDFDoc
  748. o.PDFDoc:    @.h.aconf
  749. o.PDFDoc:    xpdf.xpdf.h.XRef
  750. o.PDFDoc:    xpdf.xpdf.h.Link
  751. o.PDFDoc:    xpdf.xpdf.h.Catalog
  752. o.PDFDoc:    xpdf.xpdf.h.Page
  753. o.PSOutputDev:    xpdf.xpdf.c++.PSOutputDev
  754. o.PSOutputDev:    @.h.aconf
  755. o.PSOutputDev:    xpdf.goo.h.GString
  756. o.PSOutputDev:    @.h.aconf
  757. o.PSOutputDev:    xpdf.xpdf.h.config
  758. o.PSOutputDev:    xpdf.xpdf.h.GlobalParams
  759. o.PSOutputDev:    @.h.aconf
  760. o.PSOutputDev:    xpdf.goo.h.gtypes
  761. o.PSOutputDev:    xpdf.xpdf.h.CharTypes
  762. o.PSOutputDev:    xpdf.xpdf.h.Object
  763. o.PSOutputDev:    @.h.aconf
  764. o.PSOutputDev:    xpdf.goo.h.gtypes
  765. o.PSOutputDev:    xpdf.goo.h.gmem
  766. o.PSOutputDev:    xpdf.goo.h.GString
  767. o.PSOutputDev:    xpdf.xpdf.h.Array
  768. o.PSOutputDev:    @.h.aconf
  769. o.PSOutputDev:    xpdf.xpdf.h.Object
  770. o.PSOutputDev:    xpdf.xpdf.h.Dict
  771. o.PSOutputDev:    @.h.aconf
  772. o.PSOutputDev:    xpdf.xpdf.h.Object
  773. o.PSOutputDev:    xpdf.xpdf.h.Stream
  774. o.PSOutputDev:    @.h.aconf
  775. o.PSOutputDev:    xpdf.goo.h.gtypes
  776. o.PSOutputDev:    xpdf.xpdf.h.Object
  777. o.PSOutputDev:    xpdf.xpdf.h.Error
  778. o.PSOutputDev:    @.h.aconf
  779. o.PSOutputDev:    xpdf.xpdf.h.config
  780. o.PSOutputDev:    xpdf.xpdf.h.Function
  781. o.PSOutputDev:    @.h.aconf
  782. o.PSOutputDev:    xpdf.goo.h.gtypes
  783. o.PSOutputDev:    xpdf.xpdf.h.Object
  784. o.PSOutputDev:    xpdf.xpdf.h.Gfx
  785. o.PSOutputDev:    @.h.aconf
  786. o.PSOutputDev:    xpdf.goo.h.gtypes
  787. o.PSOutputDev:    xpdf.xpdf.h.GfxState
  788. o.PSOutputDev:    @.h.aconf
  789. o.PSOutputDev:    xpdf.goo.h.gtypes
  790. o.PSOutputDev:    xpdf.xpdf.h.Object
  791. o.PSOutputDev:    xpdf.xpdf.h.Function
  792. o.PSOutputDev:    xpdf.xpdf.h.GfxFont
  793. o.PSOutputDev:    @.h.aconf
  794. o.PSOutputDev:    xpdf.goo.h.gtypes
  795. o.PSOutputDev:    xpdf.goo.h.GString
  796. o.PSOutputDev:    xpdf.xpdf.h.Object
  797. o.PSOutputDev:    xpdf.xpdf.h.CharTypes
  798. o.PSOutputDev:    xpdf.xpdf.h.CharCodeToUnicode
  799. o.PSOutputDev:    @.h.aconf
  800. o.PSOutputDev:    xpdf.xpdf.h.CharTypes
  801. o.PSOutputDev:    xpdf.xpdf.h.UnicodeMap
  802. o.PSOutputDev:    @.h.aconf
  803. o.PSOutputDev:    xpdf.goo.h.gtypes
  804. o.PSOutputDev:    xpdf.xpdf.h.CharTypes
  805. o.PSOutputDev:    xpdf.xpdf.h.FontFile
  806. o.PSOutputDev:    @.h.aconf
  807. o.PSOutputDev:    xpdf.goo.h.gtypes
  808. o.PSOutputDev:    xpdf.goo.h.GString
  809. o.PSOutputDev:    xpdf.xpdf.h.CharTypes
  810. o.PSOutputDev:    xpdf.xpdf.h.Catalog
  811. o.PSOutputDev:    @.h.aconf
  812. o.PSOutputDev:    xpdf.xpdf.h.Page
  813. o.PSOutputDev:    @.h.aconf
  814. o.PSOutputDev:    xpdf.xpdf.h.Object
  815. o.PSOutputDev:    xpdf.xpdf.h.Stream
  816. o.PSOutputDev:    xpdf.xpdf.h.Annot
  817. o.PSOutputDev:    @.h.aconf
  818. o.PSOutputDev:    xpdf.xpdf.h.PSOutputDev
  819. o.PSOutputDev:    @.h.aconf
  820. o.PSOutputDev:    xpdf.xpdf.h.config
  821. o.PSOutputDev:    xpdf.xpdf.h.Object
  822. o.PSOutputDev:    xpdf.xpdf.h.GlobalParams
  823. o.PSOutputDev:    xpdf.xpdf.h.OutputDev
  824. o.PSOutputDev:    @.h.aconf
  825. o.PSOutputDev:    xpdf.goo.h.gtypes
  826. o.PSOutputDev:    xpdf.xpdf.h.CharTypes
  827. o.TextOutputDev:    xpdf.xpdf.c++.TextOutputDev
  828. o.TextOutputDev:    @.h.aconf
  829. o.TextOutputDev:    xpdf.goo.h.gmem
  830. o.TextOutputDev:    xpdf.goo.h.GString
  831. o.TextOutputDev:    @.h.aconf
  832. o.TextOutputDev:    xpdf.goo.h.GList
  833. o.TextOutputDev:    @.h.aconf
  834. o.TextOutputDev:    xpdf.goo.h.gtypes
  835. o.TextOutputDev:    xpdf.xpdf.h.config
  836. o.TextOutputDev:    xpdf.xpdf.h.Error
  837. o.TextOutputDev:    @.h.aconf
  838. o.TextOutputDev:    xpdf.xpdf.h.config
  839. o.TextOutputDev:    xpdf.xpdf.h.GlobalParams
  840. o.TextOutputDev:    @.h.aconf
  841. o.TextOutputDev:    xpdf.goo.h.gtypes
  842. o.TextOutputDev:    xpdf.xpdf.h.CharTypes
  843. o.TextOutputDev:    xpdf.xpdf.h.UnicodeMap
  844. o.TextOutputDev:    @.h.aconf
  845. o.TextOutputDev:    xpdf.goo.h.gtypes
  846. o.TextOutputDev:    xpdf.xpdf.h.CharTypes
  847. o.TextOutputDev:    xpdf.xpdf.h.GfxState
  848. o.TextOutputDev:    @.h.aconf
  849. o.TextOutputDev:    xpdf.goo.h.gtypes
  850. o.TextOutputDev:    xpdf.xpdf.h.Object
  851. o.TextOutputDev:    @.h.aconf
  852. o.TextOutputDev:    xpdf.goo.h.gtypes
  853. o.TextOutputDev:    xpdf.goo.h.gmem
  854. o.TextOutputDev:    xpdf.goo.h.GString
  855. o.TextOutputDev:    xpdf.xpdf.h.Array
  856. o.TextOutputDev:    @.h.aconf
  857. o.TextOutputDev:    xpdf.xpdf.h.Object
  858. o.TextOutputDev:    xpdf.xpdf.h.Dict
  859. o.TextOutputDev:    @.h.aconf
  860. o.TextOutputDev:    xpdf.xpdf.h.Object
  861. o.TextOutputDev:    xpdf.xpdf.h.Stream
  862. o.TextOutputDev:    @.h.aconf
  863. o.TextOutputDev:    xpdf.goo.h.gtypes
  864. o.TextOutputDev:    xpdf.xpdf.h.Object
  865. o.TextOutputDev:    xpdf.xpdf.h.Function
  866. o.TextOutputDev:    @.h.aconf
  867. o.TextOutputDev:    xpdf.goo.h.gtypes
  868. o.TextOutputDev:    xpdf.xpdf.h.Object
  869. o.TextOutputDev:    xpdf.xpdf.h.TextOutputDev
  870. o.TextOutputDev:    @.h.aconf
  871. o.TextOutputDev:    xpdf.goo.h.gtypes
  872. o.TextOutputDev:    xpdf.xpdf.h.GfxFont
  873. o.TextOutputDev:    @.h.aconf
  874. o.TextOutputDev:    xpdf.goo.h.gtypes
  875. o.TextOutputDev:    xpdf.goo.h.GString
  876. o.TextOutputDev:    xpdf.xpdf.h.Object
  877. o.TextOutputDev:    xpdf.xpdf.h.CharTypes
  878. o.TextOutputDev:    xpdf.xpdf.h.OutputDev
  879. o.TextOutputDev:    @.h.aconf
  880. o.TextOutputDev:    xpdf.goo.h.gtypes
  881. o.TextOutputDev:    xpdf.xpdf.h.CharTypes
  882. o.XRef:    xpdf.xpdf.c++.XRef
  883. o.XRef:    @.h.aconf
  884. o.XRef:    xpdf.goo.h.gmem
  885. o.XRef:    xpdf.xpdf.h.Object
  886. o.XRef:    @.h.aconf
  887. o.XRef:    xpdf.goo.h.gtypes
  888. o.XRef:    xpdf.goo.h.gmem
  889. o.XRef:    xpdf.goo.h.GString
  890. o.XRef:    @.h.aconf
  891. o.XRef:    xpdf.xpdf.h.Array
  892. o.XRef:    @.h.aconf
  893. o.XRef:    xpdf.xpdf.h.Object
  894. o.XRef:    xpdf.xpdf.h.Dict
  895. o.XRef:    @.h.aconf
  896. o.XRef:    xpdf.xpdf.h.Object
  897. o.XRef:    xpdf.xpdf.h.Stream
  898. o.XRef:    @.h.aconf
  899. o.XRef:    xpdf.goo.h.gtypes
  900. o.XRef:    xpdf.xpdf.h.Object
  901. o.XRef:    xpdf.xpdf.h.Stream
  902. o.XRef:    xpdf.xpdf.h.Lexer
  903. o.XRef:    @.h.aconf
  904. o.XRef:    xpdf.xpdf.h.Object
  905. o.XRef:    xpdf.xpdf.h.Stream
  906. o.XRef:    xpdf.xpdf.h.Parser
  907. o.XRef:    @.h.aconf
  908. o.XRef:    xpdf.xpdf.h.Lexer
  909. o.XRef:    xpdf.xpdf.h.Dict
  910. o.XRef:    xpdf.xpdf.h.Decrypt
  911. o.XRef:    @.h.aconf
  912. o.XRef:    xpdf.goo.h.gtypes
  913. o.XRef:    xpdf.goo.h.GString
  914. o.XRef:    xpdf.xpdf.h.Error
  915. o.XRef:    @.h.aconf
  916. o.XRef:    xpdf.xpdf.h.config
  917. o.XRef:    xpdf.xpdf.h.ErrorCodes
  918. o.XRef:    xpdf.xpdf.h.XRef
  919. o.XRef:    @.h.aconf
  920. o.XRef:    xpdf.goo.h.gtypes
  921. o.XRef:    xpdf.xpdf.h.Object
  922. o.BuiltinFontTables:    xpdf.xpdf.c++.BuiltinFontTables
  923. o.BuiltinFontTables:    @.h.aconf
  924. o.BuiltinFontTables:    xpdf.xpdf.h.FontEncodingTables
  925. o.BuiltinFontTables:    xpdf.xpdf.h.BuiltinFontTables
  926. o.BuiltinFontTables:    xpdf.xpdf.h.BuiltinFont
  927. o.BuiltinFontTables:    @.h.aconf
  928. o.BuiltinFontTables:    xpdf.goo.h.gtypes
  929. o.NameToCharCode:    xpdf.xpdf.c++.NameToCharCode
  930. o.NameToCharCode:    @.h.aconf
  931. o.NameToCharCode:    xpdf.goo.h.gmem
  932. o.NameToCharCode:    xpdf.xpdf.h.NameToCharCode
  933. o.NameToCharCode:    @.h.aconf
  934. o.NameToCharCode:    xpdf.xpdf.h.CharTypes
  935. o.JBIG2Stream:    xpdf.xpdf.c++.JBIG2Stream
  936. o.JBIG2Stream:    @.h.aconf
  937. o.JBIG2Stream:    xpdf.goo.h.GList
  938. o.JBIG2Stream:    @.h.aconf
  939. o.JBIG2Stream:    xpdf.goo.h.gtypes
  940. o.JBIG2Stream:    xpdf.xpdf.h.Error
  941. o.JBIG2Stream:    @.h.aconf
  942. o.JBIG2Stream:    xpdf.xpdf.h.config
  943. o.JBIG2Stream:    xpdf.xpdf.h.JBIG2Stream
  944. o.JBIG2Stream:    @.h.aconf
  945. o.JBIG2Stream:    xpdf.goo.h.gtypes
  946. o.JBIG2Stream:    xpdf.xpdf.h.Object
  947. o.JBIG2Stream:    @.h.aconf
  948. o.JBIG2Stream:    xpdf.goo.h.gtypes
  949. o.JBIG2Stream:    xpdf.goo.h.gmem
  950. o.JBIG2Stream:    xpdf.goo.h.GString
  951. o.JBIG2Stream:    @.h.aconf
  952. o.JBIG2Stream:    xpdf.xpdf.h.Array
  953. o.JBIG2Stream:    @.h.aconf
  954. o.JBIG2Stream:    xpdf.xpdf.h.Object
  955. o.JBIG2Stream:    xpdf.xpdf.h.Dict
  956. o.JBIG2Stream:    @.h.aconf
  957. o.JBIG2Stream:    xpdf.xpdf.h.Object
  958. o.JBIG2Stream:    xpdf.xpdf.h.Stream
  959. o.JBIG2Stream:    @.h.aconf
  960. o.JBIG2Stream:    xpdf.goo.h.gtypes
  961. o.JBIG2Stream:    xpdf.xpdf.h.Object
  962. o.JBIG2Stream:    xpdf.xpdf.h.Stream
  963. o.JBIG2Stream:    xpdf.xpdf.h.Stream-CCITT
  964. o.pdftotext:    xpdf.xpdf.c++.pdftotext
  965. o.pdftotext:    @.h.aconf
  966. o.pdftotext:    xpdf.goo.h.parseargs
  967. o.pdftotext:    xpdf.goo.h.gtypes
  968. o.pdftotext:    xpdf.goo.h.GString
  969. o.pdftotext:    @.h.aconf
  970. o.pdftotext:    xpdf.goo.h.gmem
  971. o.pdftotext:    xpdf.xpdf.h.GlobalParams
  972. o.pdftotext:    @.h.aconf
  973. o.pdftotext:    xpdf.goo.h.gtypes
  974. o.pdftotext:    xpdf.xpdf.h.CharTypes
  975. o.pdftotext:    xpdf.xpdf.h.Object
  976. o.pdftotext:    @.h.aconf
  977. o.pdftotext:    xpdf.goo.h.gtypes
  978. o.pdftotext:    xpdf.goo.h.gmem
  979. o.pdftotext:    xpdf.goo.h.GString
  980. o.pdftotext:    xpdf.xpdf.h.Array
  981. o.pdftotext:    @.h.aconf
  982. o.pdftotext:    xpdf.xpdf.h.Object
  983. o.pdftotext:    xpdf.xpdf.h.Dict
  984. o.pdftotext:    @.h.aconf
  985. o.pdftotext:    xpdf.xpdf.h.Object
  986. o.pdftotext:    xpdf.xpdf.h.Stream
  987. o.pdftotext:    @.h.aconf
  988. o.pdftotext:    xpdf.goo.h.gtypes
  989. o.pdftotext:    xpdf.xpdf.h.Object
  990. o.pdftotext:    xpdf.xpdf.h.Stream
  991. o.pdftotext:    xpdf.xpdf.h.Array
  992. o.pdftotext:    xpdf.xpdf.h.Dict
  993. o.pdftotext:    xpdf.xpdf.h.XRef
  994. o.pdftotext:    @.h.aconf
  995. o.pdftotext:    xpdf.goo.h.gtypes
  996. o.pdftotext:    xpdf.xpdf.h.Object
  997. o.pdftotext:    xpdf.xpdf.h.Catalog
  998. o.pdftotext:    @.h.aconf
  999. o.pdftotext:    xpdf.xpdf.h.Page
  1000. o.pdftotext:    @.h.aconf
  1001. o.pdftotext:    xpdf.xpdf.h.Object
  1002. o.pdftotext:    xpdf.xpdf.h.PDFDoc
  1003. o.pdftotext:    @.h.aconf
  1004. o.pdftotext:    xpdf.xpdf.h.XRef
  1005. o.pdftotext:    xpdf.xpdf.h.Link
  1006. o.pdftotext:    @.h.aconf
  1007. o.pdftotext:    xpdf.xpdf.h.Object
  1008. o.pdftotext:    xpdf.xpdf.h.Catalog
  1009. o.pdftotext:    xpdf.xpdf.h.Page
  1010. o.pdftotext:    xpdf.xpdf.h.TextOutputDev
  1011. o.pdftotext:    @.h.aconf
  1012. o.pdftotext:    xpdf.goo.h.gtypes
  1013. o.pdftotext:    xpdf.xpdf.h.GfxFont
  1014. o.pdftotext:    @.h.aconf
  1015. o.pdftotext:    xpdf.goo.h.gtypes
  1016. o.pdftotext:    xpdf.goo.h.GString
  1017. o.pdftotext:    xpdf.xpdf.h.Object
  1018. o.pdftotext:    xpdf.xpdf.h.CharTypes
  1019. o.pdftotext:    xpdf.xpdf.h.OutputDev
  1020. o.pdftotext:    @.h.aconf
  1021. o.pdftotext:    xpdf.goo.h.gtypes
  1022. o.pdftotext:    xpdf.xpdf.h.CharTypes
  1023. o.pdftotext:    xpdf.xpdf.h.CharTypes
  1024. o.pdftotext:    xpdf.xpdf.h.UnicodeMap
  1025. o.pdftotext:    @.h.aconf
  1026. o.pdftotext:    xpdf.goo.h.gtypes
  1027. o.pdftotext:    xpdf.xpdf.h.CharTypes
  1028. o.pdftotext:    xpdf.xpdf.h.Error
  1029. o.pdftotext:    @.h.aconf
  1030. o.pdftotext:    xpdf.xpdf.h.config
  1031. o.pdftotext:    xpdf.xpdf.h.config
  1032. o.GfxFont:    c++.GfxFont
  1033. o.GfxFont:    @.h.aconf
  1034. o.GfxFont:    xpdf.goo.h.gmem
  1035. o.GfxFont:    xpdf.xpdf.h.Error
  1036. o.GfxFont:    @.h.aconf
  1037. o.GfxFont:    xpdf.xpdf.h.config
  1038. o.GfxFont:    xpdf.xpdf.h.Object
  1039. o.GfxFont:    @.h.aconf
  1040. o.GfxFont:    xpdf.goo.h.gtypes
  1041. o.GfxFont:    xpdf.goo.h.gmem
  1042. o.GfxFont:    xpdf.goo.h.GString
  1043. o.GfxFont:    @.h.aconf
  1044. o.GfxFont:    xpdf.xpdf.h.Array
  1045. o.GfxFont:    @.h.aconf
  1046. o.GfxFont:    xpdf.xpdf.h.Object
  1047. o.GfxFont:    xpdf.xpdf.h.Dict
  1048. o.GfxFont:    @.h.aconf
  1049. o.GfxFont:    xpdf.xpdf.h.Object
  1050. o.GfxFont:    xpdf.xpdf.h.Stream
  1051. o.GfxFont:    @.h.aconf
  1052. o.GfxFont:    xpdf.goo.h.gtypes
  1053. o.GfxFont:    xpdf.xpdf.h.Object
  1054. o.GfxFont:    xpdf.xpdf.h.Dict
  1055. o.GfxFont:    xpdf.xpdf.h.GlobalParams
  1056. o.GfxFont:    @.h.aconf
  1057. o.GfxFont:    xpdf.goo.h.gtypes
  1058. o.GfxFont:    xpdf.xpdf.h.CharTypes
  1059. o.GfxFont:    xpdf.xpdf.h.CMap
  1060. o.GfxFont:    @.h.aconf
  1061. o.GfxFont:    xpdf.goo.h.gtypes
  1062. o.GfxFont:    xpdf.xpdf.h.CharTypes
  1063. o.GfxFont:    xpdf.xpdf.h.CharCodeToUnicode
  1064. o.GfxFont:    @.h.aconf
  1065. o.GfxFont:    xpdf.xpdf.h.CharTypes
  1066. o.GfxFont:    xpdf.xpdf.h.FontEncodingTables
  1067. o.GfxFont:    xpdf.xpdf.h.BuiltinFontTables
  1068. o.GfxFont:    xpdf.xpdf.h.BuiltinFont
  1069. o.GfxFont:    @.h.aconf
  1070. o.GfxFont:    xpdf.goo.h.gtypes
  1071. o.GfxFont:    xpdf.xpdf.h.FontFile
  1072. o.GfxFont:    @.h.aconf
  1073. o.GfxFont:    xpdf.goo.h.gtypes
  1074. o.GfxFont:    xpdf.goo.h.GString
  1075. o.GfxFont:    xpdf.xpdf.h.CharTypes
  1076. o.GfxFont:    xpdf.xpdf.h.GfxFont
  1077. o.GfxFont:    @.h.aconf
  1078. o.GfxFont:    xpdf.goo.h.gtypes
  1079. o.GfxFont:    xpdf.goo.h.GString
  1080. o.GfxFont:    xpdf.xpdf.h.Object
  1081. o.GfxFont:    xpdf.xpdf.h.CharTypes
  1082. o.GfxState:    c++.GfxState
  1083. o.GfxState:    @.h.aconf
  1084. o.GfxState:    xpdf.goo.h.gmem
  1085. o.GfxState:    xpdf.xpdf.h.Error
  1086. o.GfxState:    @.h.aconf
  1087. o.GfxState:    xpdf.xpdf.h.config
  1088. o.GfxState:    xpdf.xpdf.h.Object
  1089. o.GfxState:    @.h.aconf
  1090. o.GfxState:    xpdf.goo.h.gtypes
  1091. o.GfxState:    xpdf.goo.h.gmem
  1092. o.GfxState:    xpdf.goo.h.GString
  1093. o.GfxState:    @.h.aconf
  1094. o.GfxState:    xpdf.xpdf.h.Array
  1095. o.GfxState:    @.h.aconf
  1096. o.GfxState:    xpdf.xpdf.h.Object
  1097. o.GfxState:    xpdf.xpdf.h.Dict
  1098. o.GfxState:    @.h.aconf
  1099. o.GfxState:    xpdf.xpdf.h.Object
  1100. o.GfxState:    xpdf.xpdf.h.Stream
  1101. o.GfxState:    @.h.aconf
  1102. o.GfxState:    xpdf.goo.h.gtypes
  1103. o.GfxState:    xpdf.xpdf.h.Object
  1104. o.GfxState:    xpdf.xpdf.h.Array
  1105. o.GfxState:    xpdf.xpdf.h.Page
  1106. o.GfxState:    @.h.aconf
  1107. o.GfxState:    xpdf.xpdf.h.Object
  1108. o.GfxState:    xpdf.xpdf.h.GfxState
  1109. o.GfxState:    @.h.aconf
  1110. o.GfxState:    xpdf.goo.h.gtypes
  1111. o.GfxState:    xpdf.xpdf.h.Object
  1112. o.GfxState:    xpdf.xpdf.h.Function
  1113. o.GfxState:    @.h.aconf
  1114. o.GfxState:    xpdf.goo.h.gtypes
  1115. o.GfxState:    xpdf.xpdf.h.Object
  1116. o.Fontfile:    c++.Fontfile
  1117. o.Fontfile:    @.h.aconf
  1118. o.Fontfile:    xpdf.goo.h.gmem
  1119. o.Fontfile:    xpdf.xpdf.h.Error
  1120. o.Fontfile:    @.h.aconf
  1121. o.Fontfile:    xpdf.xpdf.h.config
  1122. o.Fontfile:    xpdf.xpdf.h.GlobalParams
  1123. o.Fontfile:    @.h.aconf
  1124. o.Fontfile:    xpdf.goo.h.gtypes
  1125. o.Fontfile:    xpdf.xpdf.h.CharTypes
  1126. o.Fontfile:    xpdf.xpdf.h.CharCodeToUnicode
  1127. o.Fontfile:    @.h.aconf
  1128. o.Fontfile:    xpdf.xpdf.h.CharTypes
  1129. o.Fontfile:    xpdf.xpdf.h.FontEncodingTables
  1130. o.Fontfile:    xpdf.xpdf.h.FontFile
  1131. o.Fontfile:    @.h.aconf
  1132. o.Fontfile:    xpdf.goo.h.gtypes
  1133. o.Fontfile:    xpdf.goo.h.GString
  1134. o.Fontfile:    @.h.aconf
  1135. o.Fontfile:    xpdf.xpdf.h.CharTypes
  1136. o.Fontfile:    xpdf.xpdf.h.CompactFontTables
  1137. o.Stream:    xpdf.xpdf.c++.Stream
  1138. o.Stream:    @.h.aconf
  1139. o.Stream:    TCPIPLibs:h.unistd
  1140. o.Stream:    TCPIPLibs:sys.h.cdefs
  1141. o.Stream:    TCPIPLibs:sys.h.types
  1142. o.Stream:    TCPIPLibs:sys.h.cdefs
  1143. o.Stream:    TCPIPLibs:machine.h.endian
  1144. o.Stream:    TCPIPLibs:machine.h.ansi
  1145. o.Stream:    TCPIPLibs:machine.h.types
  1146. o.Stream:    TCPIPLibs:sys.h.unistd
  1147. o.Stream:    TCPIPLibs:sys.h._posix
  1148. o.Stream:    xpdf.goo.h.gmem
  1149. o.Stream:    @.h.gfile
  1150. o.Stream:    xpdf.goo.h.gtypes
  1151. o.Stream:    xpdf.xpdf.h.config
  1152. o.Stream:    xpdf.xpdf.h.Error
  1153. o.Stream:    @.h.aconf
  1154. o.Stream:    xpdf.xpdf.h.config
  1155. o.Stream:    xpdf.xpdf.h.Object
  1156. o.Stream:    @.h.aconf
  1157. o.Stream:    xpdf.goo.h.gtypes
  1158. o.Stream:    xpdf.goo.h.gmem
  1159. o.Stream:    xpdf.goo.h.GString
  1160. o.Stream:    @.h.aconf
  1161. o.Stream:    xpdf.xpdf.h.Array
  1162. o.Stream:    @.h.aconf
  1163. o.Stream:    xpdf.xpdf.h.Object
  1164. o.Stream:    xpdf.xpdf.h.Dict
  1165. o.Stream:    @.h.aconf
  1166. o.Stream:    xpdf.xpdf.h.Object
  1167. o.Stream:    xpdf.xpdf.h.Stream
  1168. o.Stream:    @.h.aconf
  1169. o.Stream:    xpdf.goo.h.gtypes
  1170. o.Stream:    xpdf.xpdf.h.Object
  1171. o.Stream:    xpdf.xpdf.h.Decrypt
  1172. o.Stream:    @.h.aconf
  1173. o.Stream:    xpdf.goo.h.gtypes
  1174. o.Stream:    xpdf.goo.h.GString
  1175. o.Stream:    xpdf.xpdf.h.Stream
  1176. o.Stream:    xpdf.xpdf.h.JBIG2Stream
  1177. o.Stream:    @.h.aconf
  1178. o.Stream:    xpdf.goo.h.gtypes
  1179. o.Stream:    xpdf.xpdf.h.Object
  1180. o.Stream:    xpdf.xpdf.h.Stream
  1181. o.Stream:    xpdf.xpdf.h.Stream-CCITT
  1182. o.CharCodeToUnicode:    xpdf.xpdf.c++.CharCodeToUnicode
  1183. o.CharCodeToUnicode:    @.h.aconf
  1184. o.CharCodeToUnicode:    xpdf.goo.h.gmem
  1185. o.CharCodeToUnicode:    @.h.gfile
  1186. o.CharCodeToUnicode:    xpdf.goo.h.gtypes
  1187. o.CharCodeToUnicode:    xpdf.goo.h.GString
  1188. o.CharCodeToUnicode:    @.h.aconf
  1189. o.CharCodeToUnicode:    xpdf.xpdf.h.Error
  1190. o.CharCodeToUnicode:    @.h.aconf
  1191. o.CharCodeToUnicode:    xpdf.xpdf.h.config
  1192. o.CharCodeToUnicode:    xpdf.xpdf.h.GlobalParams
  1193. o.CharCodeToUnicode:    @.h.aconf
  1194. o.CharCodeToUnicode:    xpdf.goo.h.gtypes
  1195. o.CharCodeToUnicode:    xpdf.xpdf.h.CharTypes
  1196. o.CharCodeToUnicode:    xpdf.xpdf.h.PSTokenizer
  1197. o.CharCodeToUnicode:    @.h.aconf
  1198. o.CharCodeToUnicode:    xpdf.goo.h.gtypes
  1199. o.CharCodeToUnicode:    xpdf.xpdf.h.CharCodeToUnicode
  1200. o.CharCodeToUnicode:    @.h.aconf
  1201. o.CharCodeToUnicode:    xpdf.xpdf.h.CharTypes
  1202. o.GlobalParams:    xpdf.xpdf.c++.GlobalParams
  1203. o.GlobalParams:    @.h.aconf
  1204. o.GlobalParams:    xpdf.goo.h.gmem
  1205. o.GlobalParams:    xpdf.goo.h.GString
  1206. o.GlobalParams:    @.h.aconf
  1207. o.GlobalParams:    xpdf.goo.h.GList
  1208. o.GlobalParams:    @.h.aconf
  1209. o.GlobalParams:    xpdf.goo.h.gtypes
  1210. o.GlobalParams:    xpdf.goo.h.GHash
  1211. o.GlobalParams:    @.h.aconf
  1212. o.GlobalParams:    xpdf.goo.h.gtypes
  1213. o.GlobalParams:    @.h.gfile
  1214. o.GlobalParams:    xpdf.goo.h.gtypes
  1215. o.GlobalParams:    xpdf.xpdf.h.Error
  1216. o.GlobalParams:    @.h.aconf
  1217. o.GlobalParams:    xpdf.xpdf.h.config
  1218. o.GlobalParams:    xpdf.xpdf.h.NameToCharCode
  1219. o.GlobalParams:    @.h.aconf
  1220. o.GlobalParams:    xpdf.xpdf.h.CharTypes
  1221. o.GlobalParams:    xpdf.xpdf.h.CharCodeToUnicode
  1222. o.GlobalParams:    @.h.aconf
  1223. o.GlobalParams:    xpdf.xpdf.h.CharTypes
  1224. o.GlobalParams:    xpdf.xpdf.h.UnicodeMap
  1225. o.GlobalParams:    @.h.aconf
  1226. o.GlobalParams:    xpdf.goo.h.gtypes
  1227. o.GlobalParams:    xpdf.xpdf.h.CharTypes
  1228. o.GlobalParams:    xpdf.xpdf.h.CMap
  1229. o.GlobalParams:    @.h.aconf
  1230. o.GlobalParams:    xpdf.goo.h.gtypes
  1231. o.GlobalParams:    xpdf.xpdf.h.CharTypes
  1232. o.GlobalParams:    xpdf.xpdf.h.BuiltinFontTables
  1233. o.GlobalParams:    xpdf.xpdf.h.BuiltinFont
  1234. o.GlobalParams:    @.h.aconf
  1235. o.GlobalParams:    xpdf.goo.h.gtypes
  1236. o.GlobalParams:    xpdf.xpdf.h.FontEncodingTables
  1237. o.GlobalParams:    xpdf.xpdf.h.GlobalParams
  1238. o.GlobalParams:    @.h.aconf
  1239. o.GlobalParams:    xpdf.goo.h.gtypes
  1240. o.GlobalParams:    xpdf.xpdf.h.CharTypes
  1241. o.GlobalParams:    @.h.NameToUnicodeTable
  1242. o.GlobalParams:    xpdf.xpdf.h.UnicodeMapTables
  1243. o.GlobalParams:    xpdf.xpdf.h.DisplayFontTable
  1244. o.GlobalParams:    xpdf.xpdf.h.UTF8
  1245. o.UnicodeMap:    xpdf.xpdf.c++.UnicodeMap
  1246. o.UnicodeMap:    @.h.aconf
  1247. o.UnicodeMap:    xpdf.goo.h.gmem
  1248. o.UnicodeMap:    @.h.gfile
  1249. o.UnicodeMap:    xpdf.goo.h.gtypes
  1250. o.UnicodeMap:    xpdf.goo.h.GString
  1251. o.UnicodeMap:    @.h.aconf
  1252. o.UnicodeMap:    xpdf.goo.h.GList
  1253. o.UnicodeMap:    @.h.aconf
  1254. o.UnicodeMap:    xpdf.goo.h.gtypes
  1255. o.UnicodeMap:    xpdf.xpdf.h.Error
  1256. o.UnicodeMap:    @.h.aconf
  1257. o.UnicodeMap:    xpdf.xpdf.h.config
  1258. o.UnicodeMap:    xpdf.xpdf.h.GlobalParams
  1259. o.UnicodeMap:    @.h.aconf
  1260. o.UnicodeMap:    xpdf.goo.h.gtypes
  1261. o.UnicodeMap:    xpdf.xpdf.h.CharTypes
  1262. o.UnicodeMap:    xpdf.xpdf.h.UnicodeMap
  1263. o.UnicodeMap:    @.h.aconf
  1264. o.UnicodeMap:    xpdf.goo.h.gtypes
  1265. o.UnicodeMap:    xpdf.xpdf.h.CharTypes
  1266. o.Gfx:    c++.Gfx
  1267. o.Gfx:    @.h.aconf
  1268. o.Gfx:    xpdf.goo.h.gmem
  1269. o.Gfx:    xpdf.xpdf.h.GlobalParams
  1270. o.Gfx:    @.h.aconf
  1271. o.Gfx:    xpdf.goo.h.gtypes
  1272. o.Gfx:    xpdf.xpdf.h.CharTypes
  1273. o.Gfx:    xpdf.xpdf.h.CharTypes
  1274. o.Gfx:    xpdf.xpdf.h.Object
  1275. o.Gfx:    @.h.aconf
  1276. o.Gfx:    xpdf.goo.h.gtypes
  1277. o.Gfx:    xpdf.goo.h.gmem
  1278. o.Gfx:    xpdf.goo.h.GString
  1279. o.Gfx:    @.h.aconf
  1280. o.Gfx:    xpdf.xpdf.h.Array
  1281. o.Gfx:    @.h.aconf
  1282. o.Gfx:    xpdf.xpdf.h.Object
  1283. o.Gfx:    xpdf.xpdf.h.Dict
  1284. o.Gfx:    @.h.aconf
  1285. o.Gfx:    xpdf.xpdf.h.Object
  1286. o.Gfx:    xpdf.xpdf.h.Stream
  1287. o.Gfx:    @.h.aconf
  1288. o.Gfx:    xpdf.goo.h.gtypes
  1289. o.Gfx:    xpdf.xpdf.h.Object
  1290. o.Gfx:    xpdf.xpdf.h.Array
  1291. o.Gfx:    xpdf.xpdf.h.Dict
  1292. o.Gfx:    xpdf.xpdf.h.Stream
  1293. o.Gfx:    xpdf.xpdf.h.Lexer
  1294. o.Gfx:    @.h.aconf
  1295. o.Gfx:    xpdf.xpdf.h.Object
  1296. o.Gfx:    xpdf.xpdf.h.Stream
  1297. o.Gfx:    xpdf.xpdf.h.Parser
  1298. o.Gfx:    @.h.aconf
  1299. o.Gfx:    xpdf.xpdf.h.Lexer
  1300. o.Gfx:    xpdf.xpdf.h.GfxFont
  1301. o.Gfx:    @.h.aconf
  1302. o.Gfx:    xpdf.goo.h.gtypes
  1303. o.Gfx:    xpdf.goo.h.GString
  1304. o.Gfx:    xpdf.xpdf.h.Object
  1305. o.Gfx:    xpdf.xpdf.h.CharTypes
  1306. o.Gfx:    xpdf.xpdf.h.GfxState
  1307. o.Gfx:    @.h.aconf
  1308. o.Gfx:    xpdf.goo.h.gtypes
  1309. o.Gfx:    xpdf.xpdf.h.Object
  1310. o.Gfx:    xpdf.xpdf.h.Function
  1311. o.Gfx:    @.h.aconf
  1312. o.Gfx:    xpdf.goo.h.gtypes
  1313. o.Gfx:    xpdf.xpdf.h.Object
  1314. o.Gfx:    xpdf.xpdf.h.OutputDev
  1315. o.Gfx:    @.h.aconf
  1316. o.Gfx:    xpdf.goo.h.gtypes
  1317. o.Gfx:    xpdf.xpdf.h.CharTypes
  1318. o.Gfx:    xpdf.xpdf.h.Page
  1319. o.Gfx:    @.h.aconf
  1320. o.Gfx:    xpdf.xpdf.h.Object
  1321. o.Gfx:    xpdf.xpdf.h.Error
  1322. o.Gfx:    @.h.aconf
  1323. o.Gfx:    xpdf.xpdf.h.config
  1324. o.Gfx:    xpdf.xpdf.h.Gfx
  1325. o.Gfx:    @.h.aconf
  1326. o.Gfx:    xpdf.goo.h.gtypes
  1327.